@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
   
}

body {
  background-color: #202020;
  color: #ffffff;
}

@font-face {
    font-family: Spectral;
    src: url(../font/Spectral/Spectral-Medium.ttf);
}

@font-face {
    font-family: Noto_Sans_JP;
    src: url(../font/Noto_Sans_JP/static/);
}


header {
  width: 100%;
  padding: 3% 8%;
}

header .top-box {
  display: block;
  animation: slideinTop 3s;    
}

@keyframes slideinTop {
  0% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(0px);
  }
}

header .top-box h1 img {
  width: 45%;
}

header nav {
  width: fit-content;   
}

header nav ul {
  display: flex;
}

header nav ul li {
  width: fit-content;
  margin-right: 2em;
  line-height: 1;
  list-style-type: none;
}

header nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-family: Spectral;
  font-size: 2.8vw;
  transition: 0.5s
}

header nav ul li a:hover {
color: #818180;
transition: 0.5s 
}


/* トップ画像 */
.top-photo {
    background-image: url(../images/topphoto2.jpg);
    height: 30vw;
    background-size: cover;  
    filter: grayscale(85%);
    }


/* 見出し */
section {
  width: 82%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10%;
  margin-bottom: 13%;
  /* background-color: #818180; */
}

.top-box {
  display: block;
  margin-bottom: 5%;
}

section .top-box .concept-textbox {
  width: 100%;
  margin-bottom: 10%;
}

section h2 {
  font-family: Spectral;
  font-weight: 200;
  font-size: 3vw;
  letter-spacing: 0.1em;
  margin-bottom: 5%;
}

section p {
  font-family: Noto_Sans_JP;
  font-weight: 100;
  font-size: 2.8vw;
  line-height: 2em;
  text-align: justify;
}

section .top-box img {
  width: 60%;  
  margin-left: auto;
}
    
/* フォーム */
section:nth-of-type(2) {
    width: 82%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 5%;
    padding-bottom: 5%;
    font-family: Noto_Sans_JP;
    font-weight: 200;
    font-size: 3vw;
    line-height: 2em;
    background-color: #5c5c5c;
}    

.flexbox {
  display: block;
}

.leftbox {
    width: 40%;
    line-height: 2;
    margin-left: 10%;
}

.rightbox {
  width: 80%;
}

.rightbox input {
    width: 80%;
    font-family: Noto_Sans_JP;
    font-weight: 200;
    font-size: 2.5vw;
    margin-left: 13%;
    padding: 1.5%;
}

.messagebox {
    margin-left: 10%;
    margin-top: 5%;
}
textarea {
    display: block;
    width: 87%;
    font-family: Noto_Sans_JP;
    font-weight: 200;
    font-size: 2.5vw;
    height: 10em;
    margin-top: 1%;
    margin-bottom: 3%;
    padding: 1%;
}

.send {
  display: block;
  width: 30%;
  line-height: 2.5;
  margin-top: 10%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 0.1vw;
  font-family: Noto_Sans_JP;
  font-weight: 200;
  font-size: 3vw;
  background-color: rgb(44, 43, 43);
  color: #ffffff;
  transition: 0.5s;
}

.send:hover {
  color: #202020;
  background-color: rgb(255, 255, 255);
  transition: 0.5s;
}


.shoptext img {
  display: none; 
}


/* スライドライン */

.bbs{
  align-items: center;
  color: #fff;
  display: flex;
  height: 10vw;
  line-height: 2;
  overflow:hidden;
  width: 100%;
  white-space:nowrap;
  z-index: 1;
}
.bbs ul {
  animation: flowing 60s linear infinite;
  font-size: 3vw;
  transform:translateX(100%);
  margin: 0;
  padding: 0;
}
.bbs ul li{
  display: inline-block;
  padding-right: 3%;
  font-family: Spectral;
  letter-spacing: 0.07em;
  filter: opacity(40%);
}
@keyframes flowing {
  0% { transform:translateX(0); }
  100% { transform:translateX(-100%); }
}

/* フッター */
footer {
  width: 100%;
  padding: 6% 12.5%;
  background-color: rgb(43, 44, 44)
}

footer img {
  width: 45%;
  margin-bottom: 4%;
  margin: 0 auto;
}

.logoline {
    display: block;
}

.line {
    width: 78%;
    margin-right: auto;
    margin-bottom: 5%;
    border-bottom: 0.5px solid #ffffff;
}

.footer-flexbox {
    display: block;
}

footer .addressbox {
  width: 80%;
}

footer .addressbox address {
    font-weight: 200;
    font-size: 2.8vw;   
    font-style: normal;
    line-height: 2;
    font-family: Noto_Sans_JP;
    letter-spacing: 0.07em;
    color: #fff;  
}

.textbox {
    display: flex;
    width: 80%;
    margin-top: 7%;
}

.footer-middlebox {
  width: 30%;
}

.footer-rightbox {
    width: 30%;
    margin-left: 10%;
}


footer .footer-middlebox a, .footer-rightbox a {
    line-height: 2;
    font-weight: 200;
    font-size: 2.5vw; 
    text-decoration: none;  
    color: #fff;
    transition: 0.5s;
  }

  footer .footer-middlebox a:hover {
    font-weight: 400;
    transition: 0.5s;
  }
  
  footer .footer-rightbox a:hover {
    font-weight: 400;
    transition: 0.5s;
  }

  footer .sns-icon {
    width: 13%;
    margin-left: 10%;
    height: fit-content;
    font-size: 5vw;
  }

footer .sns-icon .fa-brands {
    color: #fff;
  }

footer .sns-icon .fa-instagram {
  margin-left: 3%;
  }
  
footer .textbox p {    
    letter-spacing: 0.07em;
    font-size: 3vw;
    color: #fff;
}
